home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Text⁄Files
/
Writeswell Jr. 1.0.2 Master
/
WSI Library Source
/
Gripe.h
< prev
next >
Wrap
Text File
|
1992-11-12
|
227b
|
10 lines
#undef USE_DEBUGGER /* Undefine this to replace debugger calls with alerts */
#ifdef USE_DEBUGGER
#define Gripe( foo ) DebugStr( foo )
#else
#define Gripe( foo ) RealGripe( foo )
#endif
void RealGripe( StringPtr complaint );